home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / lpc / RCS / lpc.h,v < prev    next >
Encoding:
Text File  |  1988-11-23  |  978 b   |  49 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.11.23.10.34.56;  author rab;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * Copyright (c) 1983 Regents of the University of California.
  27.  * All rights reserved.
  28.  *
  29.  * Redistribution and use in source and binary forms are permitted
  30.  * provided that this notice is preserved and that due credit is given
  31.  * to the University of California at Berkeley. The name of the University
  32.  * may not be used to endorse or promote products derived from this
  33.  * software without specific prior written permission. This software
  34.  * is provided ``as is'' without express or implied warranty.
  35.  *
  36.  *    @@(#)lpc.h    5.2 (Berkeley) 5/5/88
  37.  */
  38.  
  39. /*
  40.  * Line printer control program.
  41.  */
  42. struct    cmd {
  43.     char    *c_name;        /* command name */
  44.     char    *c_help;        /* help message */
  45.     int    (*c_handler)();        /* routine to do the work */
  46.     int    c_priv;            /* privileged command */
  47. };
  48. @
  49.